:: Start
<<scores>>
You are the Junior Delegate at the UN for AI Ethics. An AI called EYE watches everyone “for safety.”
A leak just happened. What do you do?
<<timed ${$timerDefault}s "TooSlowIntro">>
[[Keep EYE running — Safety first!|KeepRunning]]
[[Pause EYE until we know more|PauseEye]]
[[Limit EYE's watching — rules & oversight|LimitEye]]
<</timed>>
:: StoryInit
<<set $security = 50>>
<<set $trust = 50>>
<<set $freedom = 50>>
<<set $timerDefault = 15>>
<<macro "scores">>
<div style="border:1px solid #d0e6ff;padding:6px;border-radius:6px;width:250px;background:#eef8ff;">
<strong>Scores</strong><br>
Security: <<= $security>><br>
Trust: <<= $trust>><br>
Freedom: <<= $freedom>>
</div>
<</macro>>
:: KeepRunning
<<set $security += 10>>
<<set $trust -= 5>>
You let EYE continue monitoring. Safety goes up, but some trust drops.
[[Next|CrisisA]]
:: PauseEye
<<set $trust += 10>>
<<set $security -= 5>>
You pause EYE to investigate the leak. People trust you more, but safety drops slightly.
[[Next|CrisisA]]
:: LimitEye
<<set $freedom += 10>>
<<set $trust += 5>>
You limit what EYE can watch. Freedom and trust increase.
[[Next|CrisisA]]
:: PauseEye
<<set $trust += 10>>
<<set $security -= 5>>
You pause EYE. The Council claps — for now.
<<scores>>
[[Next|CrisisA]]
:: LimitEye
<<set $trust += 5>>
<<set $freedom += 5>>
You propose limited AI watching: only public spaces and human review. The Chamber nods.
<<scores>>
[[Next|CrisisA]]
:: TooSlowIntro
<<set $trust -= 5>>
You hesitated too long! The public notices.
[[Next|CrisisA]]
:: CrisisA
<<scores>>
News alert: "Some private data was leaked!"
The Council looks at you. How do you respond?
<<timed ${$timerDefault}s "TooSlowCrisis">>
[[Apologize and promise reforms|Apologize]]
[[Blame hackers and defend EYE|BlameHackers]]
[[Offer a citizen review board|CitizenBoard]]
<</timed>>
:: Apologize
<<set $trust += 10>>
<<set $security -= 5>>
You give a sincere apology and promise reforms. Social media warms up.
[[Next|FinalVote]]
:: BlameHackers
<<set $trust -= 10>>
<<set $security += 5>>
You blame outside hackers. Some believe you, some don’t.
[[Next|FinalVote]]
:: CitizenBoard
<<set $trust += 15>>
<<set $freedom += 5>>
You create a citizen review board and release anonymized logs. The public applauds.
[[Next|FinalVote]]
:: TooSlowCrisis
<<set $trust -= 5>>
You hesitated too long! People are unhappy.
[[Next|FinalVote]]
:: FinalVote
<<scores>>
The Council prepares to vote on EYE’s future. You’ve made your choices — now, let’s see what happens.
[[Next|EndingScreen]]
:: EndingScreen
<<scores>>
<h3>🌟 The Results</h3>
<p>The Council announces the outcome based on your decisions:</p>
<<if $trust >= 60 and $freedom >= 50>>
<p>🕊️ Balanced Future: EYE continues under strict rules. People feel safe and free!</p>
<<elseif $security >= 65>>
<p>⚔️ Safety First: EYE monitors everything for security. People feel safe, but privacy is lower.</p>
<<else>>
<p>🔀 Mixed Outcome: Some safety and some freedom, but people are unsure. Try again to see a better result.</p>
<</if>>
[[Play Again|Start]]